home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / mus / play / DeliDecrunch.lha / src / DeliHead.asm < prev    next >
Assembly Source File  |  2000-10-15  |  1KB  |  54 lines

  1. ; DeliDecruncher (C) 2000 Stuart Caie <kyzer@4u.net>
  2. ;
  3. ; This program is free software; you can redistribute it and/or modify
  4. ; it under the terms of the GNU General Public License as published by
  5. ; the Free Software Foundation; either version 2 of the License, or
  6. ; (at your option) any later version.
  7. ;
  8. ; This program is distributed in the hope that it will be useful,
  9. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. ; GNU General Public License for more details.
  12. ;
  13. ; You should have received a copy of the GNU General Public License
  14. ; along with this program; if not, write to the Free Software
  15. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16.  
  17.     xref    _PlayerTags
  18.     moveq    #-1,d0
  19.     rts
  20.     dc.b    'DELIRIUM'
  21.     dc.l    _PlayerTags
  22.  
  23. dtg_GetListData=$38
  24. dtg_CopyString=$48
  25. dtg_AllocListData=$78
  26. dtg_FreeListData=$7C
  27.  
  28. ;    xdef    _DeliGetListData
  29. ;_DeliGetListData
  30. ;    move.l    a6,-(sp)
  31. ;    move.l    dtg_GetListData(a5),a6
  32. ;    bra.s    __call
  33. ;
  34. ;    xdef    _DeliCopyString
  35. ;_DeliCopyString
  36. ;    move.l    a6,-(sp)
  37. ;    move.l    dtg_CopyString(a5),a6
  38. ;    bra.s    __call
  39.  
  40.     xdef    _DeliAllocListData
  41. _DeliAllocListData
  42.     move.l    a6,-(sp)
  43.     move.l    dtg_AllocListData(a5),a6
  44.     bra.s    __call
  45.  
  46.     xdef    _DeliFreeListData
  47. _DeliFreeListData
  48.     move.l    a6,-(sp)
  49.     move.l    dtg_FreeListData(a5),a6
  50. __call    jsr    (a6)
  51.     move.l    (sp)+,a6
  52.     rts
  53.